All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.apple.alpha.app.InputManager

java.lang.Object
   |
   +----com.apple.alpha.core.NativeObject
           |
           +----com.apple.alpha.app.InputManager

public class InputManager
extends NativeObject
implements TextInput
This class wraps the Objective-C class NSInputManager.


Constructor Index

 o InputManager()
This default constructor is equivalent to Objective-C's [[NSInputManager alloc] init].
 o InputManager(boolean, int)
Protected constructor used by the bridge to wrap an Objective-C object.
 o InputManager(String, String)
This constructor has the same effect as calling - initWithName:host: on a newly allocated object.

Method Index

 o conversationIdentifier()
A wrapper for the - conversationIdentifier Objective-C instance method defined by the TextInput interface (known as the NSTextInput Objective-C protocol).
 o currentInputManager()
A wrapper for the + currentInputManager Objective-C class method.
 o doCommandBySelector(Selector)
A wrapper for the - doCommandBySelector: Objective-C instance method defined by the TextInput interface (known as the NSTextInput Objective-C protocol).
 o hasMarkedText()
A wrapper for the - hasMarkedText Objective-C instance method defined by the TextInput interface (known as the NSTextInput Objective-C protocol).
 o insertText(String)
A wrapper for the - insertText: Objective-C instance method defined by the TextInput interface (known as the NSTextInput Objective-C protocol).
 o localizedInputManagerName()
A wrapper for the - localizedInputManagerName Objective-C instance method.
 o markedTextSelectionChanged(Range, Object)
A wrapper for the - markedTextSelectionChanged:client: Objective-C instance method.
 o markedTextWillBeAbandoned(Object)
A wrapper for the - markedTextWillBeAbandoned: Objective-C instance method.
 o setMarkedTextAndSelectedRange(String, Range)
A wrapper for the - setMarkedText:selectedRange: Objective-C instance method defined by the TextInput interface (known as the NSTextInput Objective-C protocol).
 o unmarkText()
A wrapper for the - unmarkText Objective-C instance method defined by the TextInput interface (known as the NSTextInput Objective-C protocol).
 o wantsToInterpretAllKeystrokes()
A wrapper for the - wantsToInterpretAllKeystrokes Objective-C instance method.

Constructors

 o InputManager
 protected InputManager(boolean shouldAllocate,
                        int objcObject)
Protected constructor used by the bridge to wrap an Objective-C object. It should never be invoked directly.

 o InputManager
 public InputManager()
This default constructor is equivalent to Objective-C's [[NSInputManager alloc] init].

 o InputManager
 public InputManager(String inputServerName,
                     String hostName)
This constructor has the same effect as calling - initWithName:host: on a newly allocated object.

Methods

 o currentInputManager
 public static native InputManager currentInputManager()
A wrapper for the + currentInputManager Objective-C class method.

 o localizedInputManagerName
 public native String localizedInputManagerName()
A wrapper for the - localizedInputManagerName Objective-C instance method.

 o markedTextWillBeAbandoned
 public native void markedTextWillBeAbandoned(Object cli)
A wrapper for the - markedTextWillBeAbandoned: Objective-C instance method.

 o markedTextSelectionChanged
 public native void markedTextSelectionChanged(Range newSel,
                                               Object cli)
A wrapper for the - markedTextSelectionChanged:client: Objective-C instance method.

 o wantsToInterpretAllKeystrokes
 public native boolean wantsToInterpretAllKeystrokes()
A wrapper for the - wantsToInterpretAllKeystrokes Objective-C instance method.

 o insertText
 public native void insertText(String aString)
A wrapper for the - insertText: Objective-C instance method defined by the TextInput interface (known as the NSTextInput Objective-C protocol).

 o doCommandBySelector
 public native void doCommandBySelector(Selector aSelector)
A wrapper for the - doCommandBySelector: Objective-C instance method defined by the TextInput interface (known as the NSTextInput Objective-C protocol).

 o setMarkedTextAndSelectedRange
 public native void setMarkedTextAndSelectedRange(String aString,
                                                  Range selRange)
A wrapper for the - setMarkedText:selectedRange: Objective-C instance method defined by the TextInput interface (known as the NSTextInput Objective-C protocol).

 o unmarkText
 public native void unmarkText()
A wrapper for the - unmarkText Objective-C instance method defined by the TextInput interface (known as the NSTextInput Objective-C protocol).

 o hasMarkedText
 public native boolean hasMarkedText()
A wrapper for the - hasMarkedText Objective-C instance method defined by the TextInput interface (known as the NSTextInput Objective-C protocol).

 o conversationIdentifier
 public native int conversationIdentifier()
A wrapper for the - conversationIdentifier Objective-C instance method defined by the TextInput interface (known as the NSTextInput Objective-C protocol).


All Packages  Class Hierarchy  This Package  Previous  Next  Index